rockchip/rk3399: changed printf/tf_printf for console output
authorCaesar Wang <[email protected]>
Thu, 6 Apr 2017 00:40:24 +0000 (08:40 +0800)
committerCaesar Wang <[email protected]>
Fri, 7 Apr 2017 01:16:59 +0000 (09:16 +0800)
The printf() isn't used by the firmware itself, just by the tools under
the ./tools/ folder. Then tf_printf will unconditionally print.
Remove the unused print_dram_status_info() function.

Change-Id: Ie699ccb54a5be9a2cbbd7b8d4193b57075a2f57a
Signed-off-by: Caesar Wang <[email protected]>
plat/rockchip/rk3399/drivers/dram/dfs.c

index f589a8ad5495d7f8cd5e7b53227b0a07c5fa9637..267398ff84ba243b57a84ca204b6ce33634c79f6 100644 (file)
@@ -445,7 +445,7 @@ static uint32_t get_pi_tdfi_phy_rdlat(struct dram_timing_t *pdram_timing,
        } else if (timing_config->dram_type == LPDDR3) {
                mem_delay_ps = 5500;
        } else {
-               printf("get_pi_tdfi_phy_rdlat:dramtype unsupport\n");
+               NOTICE("get_pi_tdfi_phy_rdlat:dramtype unsupport\n");
                return 0;
        }
        round_trip_ps = 1100 + 500 + mem_delay_ps + 500 + 600;
@@ -2009,21 +2009,6 @@ static uint32_t prepare_ddr_timing(uint32_t mhz)
        return index;
 }
 
-void print_dram_status_info(void)
-{
-       uint32_t *p;
-       uint32_t i;
-
-       p = (uint32_t *) &rk3399_dram_status.timing_config;
-       INFO("rk3399_dram_status.timing_config:\n");
-       for (i = 0; i < sizeof(struct timing_related_config) / 4; i++)
-               tf_printf("%u\n", p[i]);
-       p = (uint32_t *) &rk3399_dram_status.drv_odt_lp_cfg;
-       INFO("rk3399_dram_status.drv_odt_lp_cfg:\n");
-       for (i = 0; i < sizeof(struct drv_odt_lp_config) / 4; i++)
-               tf_printf("%u\n", p[i]);
-}
-
 uint32_t ddr_set_rate(uint32_t hz)
 {
        uint32_t low_power, index, ddr_index;